home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990422-19990725 / 000027_news@watsun.cc.columbia.edu _Tue May 4 00:45:42 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@watsun.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id AAA26142
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 4 May 1999 00:45:41 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id AAA27519
  7.     for kermit.misc@watsun.cc.columbia.edu; Tue, 4 May 1999 00:36:54 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: Bob Schor <bschor@vms.cis.pitt.edu>
  10. Subject: Re: Help w/ file transfer in RT-11
  11. Date: Tue, 04 May 1999 00:37:56 -0400
  12. Organization: University of Pittsburgh
  13. Message-ID: <372E79A4.289A9E8A@vms.cis.pitt.edu>
  14. To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. Tim Shoppa wrote:
  17. > Karl Beykirch wrote:
  18. > >
  19. > > I have inherited an LSI-11 computer running RT-11.  I'm pathetically
  20. > > ignorant about RT-11.  I have lots of data files for which I have a
  21. > > program that will output a summary to the terminal (a mac running term
  22. > > emulation- VersaTerm Pro).  I need the whole file, not just the summary.
  23. > > Since I know the format of the files, I think the easiest thing would be
  24. > > to transfer them to the mac, where I can easily extract everything.  The
  25. > > only communication ports on the DEC are serial, so I tried something
  26. > > like: COPY ABCDAT.123 TT:
  27. > >
  28. > > This causes lots of nice jibberish to dance all over the screen, but the
  29. > > captured stream is incomplete.
  30. > Seeing how you get jibberish all over your screen, the file is
  31. > almost certainly a binary file.  In order to move these files over
  32. > a serial line, you want to use Kermit on both
  33. > ends; Kermit for the RT-11 is available by anonymous ftp from
  34. > kermit.columbia.edu.  If I recall correctly, VersaTerm Pro
  35. > on a Mac has a rudimentary Kermit implementation in it.
  36. > Alternatively, you can use physical media (floppy, tape, Zip
  37. > cartridge, whatever is in common to both systems) to move the
  38. > files, or put TCP/IP on both the RT-11 and the Mac and FTP the
  39. > files in and out.
  40.  
  41.      If you really want to be "quick and dirty", for example, to see
  42. what you have there, there is nothing quite like DUMP/TERM filnam.ext,
  43. which will give you a nicely-formatted octal + Ascii dump of your data
  44. file, all of the bytes.  If you want, you can add the /NOASCII switch
  45. to turn off the final Ascii column.  This is probably NOT the way to go
  46. for doing any sizable amount of data, but to do a quick "reality check"
  47. on a file or two, it is quick, easy, and requires no extra hardware or
  48. software!
  49.  
  50. Bob Schor
  51. RT-11/TSX+ User/Abuser
  52.  
  53. P.S. -- In fact, I transfer mostly with FTP these days, though I've also
  54. used Billy Y's Kermit implementation, KRT, quite successfully.